home *** CD-ROM | disk | FTP | other *** search
/ Online Today 2000 January / Onto0100.iso / pc / Browser / Internet Explorer 5.0 / ie 5.0 / iejava.cab / com / ms / ie / IWebBrowser.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-02-01  |  3.1 KB  |  60 lines

  1. package com.ms.ie;
  2.  
  3. import com.ms.com.IUnknown;
  4. import com.ms.com.Variant;
  5. import com.ms.com._Guid;
  6.  
  7. public interface IWebBrowser extends IUnknown {
  8.    _Guid iid = new _Guid(-357422399, (short)12481, (short)4559, (byte)-89, (byte)-21, (byte)0, (byte)0, (byte)-64, (byte)91, (byte)-82, (byte)11);
  9.  
  10.    Object getContainer();
  11.  
  12.    String getLocationURL();
  13.  
  14.    boolean getBusy();
  15.  
  16.    void Refresh();
  17.  
  18.    Object getParent();
  19.  
  20.    Object getDocument();
  21.  
  22.    void GoForward();
  23.  
  24.    void Stop();
  25.  
  26.    String getLocationName();
  27.  
  28.    int getTop();
  29.  
  30.    void setTop(int var1);
  31.  
  32.    Object getApplication();
  33.  
  34.    void Refresh2(Variant var1);
  35.  
  36.    void Navigate(String var1, Variant var2, Variant var3, Variant var4, Variant var5);
  37.  
  38.    int getLeft();
  39.  
  40.    void setLeft(int var1);
  41.  
  42.    void GoHome();
  43.  
  44.    String getType();
  45.  
  46.    boolean getTopLevelContainer();
  47.  
  48.    int getHeight();
  49.  
  50.    void GoSearch();
  51.  
  52.    void GoBack();
  53.  
  54.    void setHeight(int var1);
  55.  
  56.    int getWidth();
  57.  
  58.    void setWidth(int var1);
  59. }
  60.